home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / ViewIt™ 2.24 Shareware / C Demo Projects / THINK C 6.0 Demos / MinimumLC.c < prev    next >
C/C++ Source or Header  |  1994-04-09  |  283b  |  15 lines

  1. /* Minimum LC Demonstration Program */
  2. /* ©FaceWare 1991-93.  All Rights Reserved. */
  3.  
  4. #include <string.h>
  5. #include "FaceStorLC.h"
  6. extern struct FaceRec fRec;
  7.  
  8. void main()
  9. {
  10.     strcpy(fRec.uName, "Minimum.Rsrc");
  11.     FaceIt(0,DoInit,0,0,0,0);
  12.     for (;;) {
  13.         FaceIt(0,DoLoop,0,0,0,0);
  14.         }
  15. }